home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / MBLIB10.ZIP;1 / C_EXAMP.ZIP / MSGCOUNT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-07  |  225 b   |  11 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "mb_lib.h"
  4.  
  5. void main (void) {
  6.   if (msg_open ("C:\\MSGBASE"))
  7.     exit (1);
  8.   msg_read_info ();
  9.   printf ("Number of messages in base: %u\n", msginfo.total_msgs);
  10. }
  11.